home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 07 - 1991 / 07.07 Jul 91 / Editor Code / editor.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-05-24  |  497 b   |  23 lines  |  [TEXT/MPS ]

  1. class TEditor : public TApplication {
  2. public:
  3.     pascal TEditor(OSType itsMainFileType);
  4.     pascal void HandleFinderRequest();
  5. #ifdef qDebug
  6.     virtual pascal void IdentifySoftware();
  7. #endif
  8. };
  9.  
  10. class TEditView : public TScroller {
  11. public:
  12.     TTEView        *fTEView1;
  13.     TTEView        *fTEView2;
  14.     pascal void IEditView(TWindow *itsWindow);
  15. };
  16.  
  17. class TTEBox : public TTEView {
  18. public:
  19.     pascal void Draw(Rect *area);
  20.     pascal struct TCommand *DoMouseCommand(Point *theMouse,
  21.                     EventInfo *info, Point *hysteresis);
  22. };
  23.